From 275001badc2ceee8958059651ab8bee1233f6289 Mon Sep 17 00:00:00 2001 From: Mart Raudsepp Date: Wed, 16 Sep 2009 08:53:22 +0300 Subject: [PATCH] Pack the struct better, should save four bytes per GtkIconView --- gtk/gtkiconview.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gtk/gtkiconview.c b/gtk/gtkiconview.c index c517b0fb90..b3dcb2fe9c 100644 --- a/gtk/gtkiconview.c +++ b/gtk/gtkiconview.c @@ -160,8 +160,6 @@ struct _GtkIconViewPrivate gint tooltip_column; - guint draw_focus : 1; - /* Drag-and-drop. */ GdkModifierType start_button_mask; gint pressed_button; @@ -186,7 +184,9 @@ struct _GtkIconViewPrivate guint empty_view_drop :1; guint ctrl_pressed : 1; - guint shift_pressed : 1; + guint shift_pressed : 1; + + guint draw_focus : 1; }; /* Signals */ -- 2.30.2